strana 76
---------
<Grid x:Name="LayoutRoot" Background="Beige" ShowGridLines="True" >
   <Grid.RowDefinitions>
        <RowDefinition Height="100"/>
        <RowDefinition Height="40"/>
        <RowDefinition Height="200"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="100" />
        <ColumnDefinition Width="200"/>
        <ColumnDefinition Width="400"/>
    </Grid.ColumnDefinitions>
</Grid>



<Grid x:Name="LayoutRoot" Background="Beige" ShowGridLines="True" >
   <Grid.RowDefinitions>
        <RowDefinition Height="100"/>
        <RowDefinition Height="40"/>
        <RowDefinition Height="200"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="auto" />
        <ColumnDefinition Width="200"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
</Grid>



strana 77
---------
<Grid x:Name="LayoutRoot" Background="Beige" ShowGridLines="True" >
   <Grid.RowDefinitions>
        <RowDefinition Height="100"/>
        <RowDefinition Height="40"/>
        <RowDefinition Height="200"/>
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
        <ColumnDefinition Width="auto" />
        <ColumnDefinition Width="200"/>
        <ColumnDefinition Width="*"/>
    </Grid.ColumnDefinitions>
	<Button Grid.Row="1" Grid.Column="0" Width="100" Content="O.K."  />
</Grid>




strana 78
---------
<Grid x:Name="LayoutRoot" Background="White" ShowGridLines="True">
	
   <Grid.RowDefinitions>
     <RowDefinition />
     <RowDefinition />
     <RowDefinition />
 </Grid.RowDefinitions>
 <Grid.ColumnDefinitions>
     <ColumnDefinition />
     <ColumnDefinition />
     <ColumnDefinition />
 </Grid.ColumnDefinitions>

<controls:GridSplitter Grid.Row="0" Grid.Column="1" Width="5" Grid.RowSpan="3"    
          HorizontalAlignment="Left" VerticalAlignment="Stretch"/>
<controls:GridSplitter Grid.Row="1" Grid.Column="0" Height="5" Grid.ColumnSpan="3" 
          HorizontalAlignment="Stretch" VerticalAlignment="Top"/>

</Grid>




strana 81
---------
<Grid x:Name="LayoutRoot" Background="White">
        <Grid.RowDefinitions>
            <RowDefinition Height="50" />
            <RowDefinition Height="30*" MaxHeight="70"  />
            <RowDefinition Height="*" MinHeight="30" MaxHeight="50" />
            <RowDefinition Height="Auto" MinHeight="5" MaxHeight="30" />
        </Grid.RowDefinitions>

        <Grid.ColumnDefinitions>
            <ColumnDefinition />
            <ColumnDefinition />
            <ColumnDefinition />
        </Grid.ColumnDefinitions>

         <TextBlock Grid.Row="0" Grid.Column="0" FontSize="12" FontWeight="Bold" 
		      		Text ="Jmeno:" Margin="5"/>
         <TextBox   Grid.Row="0" Grid.Column="1" Grid.ColumnSpan="2" 
                    Width="400" Background="Yellow"  Margin="5"  />

         <TextBlock Grid.Row="1" Grid.Column="0" FontSize="12" FontWeight="Bold"
                    Text="Aktivn len?"  VerticalAlignment="Bottom" />
         <CheckBox  Grid.Row="1" Grid.Column="1" FontSize="12" FontWeight="Bold"  
                    Content="ANO"  IsChecked="true" VerticalAlignment="Bottom" /> 
       <TextBlock x:Name="klub" Text="Golfov klub" 
                    Grid.Row="1" Grid.Column="2" VerticalAlignment="Bottom" 
                   FontFamily="Comic Sans MS" FontSize="24" FontWeight="Bold" 
                   Margin="0,20,0,0"/>
    </Grid>


strana 83
---------
   <StackPanel Background="Yellow">
       <Button  Content="Ano" Width="80" Margin="10"/>
       <Button  Content="Ne" Width="80" Margin="10"/>
       <Button  Content="Mon" Width="80" Margin="10"/>
   </StackPanel>


    <StackPanel Orientation="Horizontal" Background="Beige">
       <Button  Content="Ano" Height="30" Margin="10"/>
       <Button  Content="Ne" Height="30" Margin="10"/>
       <Button  Content="Mon" Height="30" Margin="10"/>
    </StackPanel>



strana 85
---------
<StackPanel Margin="20">
    <Rectangle Fill="Red" Width="50" Height="50" Margin="5" />
    <Rectangle Fill="Orange" Width="50" Height="50" Margin="5" />
    <Rectangle Fill="Green" Width="50" Height="50" Margin="5" />
</StackPanel>


<Canvas Height="150" Margin="150,70,260,0" VerticalAlignment="Top" 
        Background="LightGray">
    <Button Canvas.Left="20" Canvas.Top="20" Content="O.K." ></Button>
</Canvas>



strana 86
---------
<UserControl
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	x:Class="kontejner1.MainPage"
	Width="640" Height="480">

	<Grid x:Name="LayoutRoot" Background="White">
	   <Canvas Height="150" Margin="150,70,260,0" VerticalAlignment="Top" Background="LightGray">
          <Button Canvas.Left="20" Canvas.Top="20" Content="O.K." ></Button>
      </Canvas>
	</Grid>
</UserControl>


<UserControl
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	x:Class="kontejner1.MainPage"
	Width="640" Height="480">

	<Canvas x:Name="LayoutRoot" Background="LightGray">
        <Button Canvas.Left="20" Canvas.Top="20" Content="O.K." ></Button>
    </Canvas>
</UserControl>





strana 87
---------
<Canvas Width="300" Height="300" Background="White">
     <Canvas Width="250" Height="250" Canvas.Left="30" 
        Canvas.Top="30" Background="blue">
        <Rectangle Canvas.Left="30" Canvas.Top="30" 
               Fill="red" Width="200" Height="200" />
     </Canvas>
</Canvas>



strana 88
---------
   <Canvas x:Name="smajlik"  Canvas.Left="10" Canvas.Top="10" >
       <Ellipse Canvas.Left="10" Canvas.Top="10" Width="80" Height="80"
             Fill="Yellow" Stroke="Black" />
       <Ellipse Canvas.Left="25" Canvas.Top="25" Width="10" Height="10"
             Fill="Black" Stroke="Black" />
       <Ellipse Canvas.Left="55" Canvas.Top="25" Width="10" Height="10"
             Fill="Black" Stroke="Black" />
       <Path Data="M 25,50 A 15,15 450 0 0 65,50" Stroke="Black"/>
   </Canvas>




strana 89
---------
<Canvas x:Name="ObrazkoveTlacidlo" Canvas.Left="150" Canvas.Top="10" >
     <Button Content="O.K." Width="280" Height="100" />

     <Canvas x:Name="smajlik"  Canvas.Left="170" Canvas.Top="0" >
      <Ellipse Canvas.Left="10" Canvas.Top="10" Width="80" Height="80"
               Fill="Yellow" Stroke="Black" />
      <Ellipse Canvas.Left="25" Canvas.Top="25" Width="10" Height="10"
               Fill="Black" Stroke="Black" />
      <Ellipse Canvas.Left="55" Canvas.Top="25" Width="10" Height="10"
               Fill="Black" Stroke="Black" />
      <Path Data="M 25,50 A 15,15 450 0 0 65,50" Stroke="Black"/>
     </Canvas>   <!--koncovy tag canvasu tlacidla-->

 </Canvas>       <!--koncovy tag obrazkoveho tlacidla-->



<Canvas> 
   <Rectangle Fill="Red" Width="200" Height="100" 
    Canvas.Left="10" Canvas.Top="10"/> 
   <Rectangle Fill="Blue" Width="200" Height="100" 
    Canvas.Left="50" Canvas.Top="50"/> 
</Canvas>



strana 90
---------
<controlsToolkit:DockPanel Margin="43,67,55,76"/>
   <controlsToolkit:DockPanel Height="200" Width="200" Grid.Column="0" Grid.Row="1">
   <Button controlsToolkit:DockPanel.Dock="Left" Content="Lev"/>
   <Button controlsToolkit:DockPanel.Dock="Top" Content="Horn"/>
   <Button controlsToolkit:DockPanel.Dock="Right" Content="Prav"/>
   <Button controlsToolkit:DockPanel.Dock="Bottom" Content="Doln"/>
   <Button controlsToolkit:DockPanel.Dock="Bottom" Content="Dal..."/>
</controlsToolkit:DockPanel>




